home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Aztec C v5.2a disk 4.adf / 204inc_h.lzh / clib / macros.h < prev    next >
C/C++ Source or Header  |  1991-03-14  |  378b  |  20 lines

  1. #ifndef CLIB_MACROS_H
  2. #define CLIB_MACROS_H
  3. /*
  4. **    $Filename: clib/macros.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 36.0 $
  7. **    $Date: 90/11/30 $
  8. **
  9. **    C prototypes
  10. **
  11. **    (C) Copyright 1990 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. #define MAX(a,b)    ((a)>(b)?(a):(b))
  16. #define MIN(a,b)    ((a)<(b)?(a):(b))
  17. #define ABS(x)        ((x<0)?(-(x)):(x))
  18.  
  19. #endif    /* CLIB_MACROS_H */
  20.